From: Glenn Morris Date: Mon, 7 Dec 2009 06:21:27 +0000 (+0000) Subject: Ulrich Mueller X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~9033 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=4cb6de193380dfbf3c05457c88bce3dc21d0e038;p=emacs.git Ulrich Mueller (byte-compile-insert-header): Put the version number comment back on its own line, for easier parsing by external tools. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d820b88001a..c9ee1db1b66 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2009-12-07 Ulrich Mueller + + * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version + number comment back on its own line, for easier parsing. + 2009-12-07 Stefan Monnier Make it work for non-file buffers (bug#5102). diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index c633f7f6567..b8afe55f028 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -1894,7 +1894,8 @@ Call from the source buffer." (concat (user-login-name) "@" (system-name))) " on " (current-time-string) "\n" ";;; from file " filename "\n" - ";;; in Emacs version " emacs-version ", with" + ";;; in Emacs version " emacs-version "\n" + ";;; with" (cond ((eq optimize 'source) " source-level optimization only") ((eq optimize 'byte) " byte-level optimization only")